home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
How Would You Survive?
/
How Would You Survive (1995)(Grolier)[Mac-PC].iso
/
pc
/
shared.dir
/
01943_Script_Travel
< prev
next >
Wrap
Text File
|
1995-09-13
|
670b
|
31 lines
global gEndOfScroll, gHotSpotStatus
on TravelBackwards UntilWhatFrame
set gHotSpotStatus = 0
repeat while (the stilldown and rollover(the clickon))
put the framelabel into gEndOfScroll
if gEndOfScroll = UntilWhatFrame then
--beep
exit
else
go the frame -1
updatestage
end if
end repeat
end
on TravelForewards UntilWhatFrame
set gHotSpotStatus = 0
repeat while (the stilldown and rollover(the clickon))
put the framelabel into gEndOfScroll
if gEndOfScroll = UntilWhatFrame then
--beep
exit
else
go the frame + 1
updatestage
end if
end repeat
end